ICommandParams.ToCollection method

Namespace: NextDesign.Desktop

Description

Converts the parameter contents into an object collection.

Return value

  • ICollection

Annotation

About API specification change and migration method in Ver.1.1

From Ver.1.1, the type of this property is changed from IObjectCollection to (C#) ICollection. When using this API, it is necessary to change the relevant part in the extension along with the version upgrade to Ver.1.1 or later.

Change it by referring to the following example.

Change before

IObjectCollection params = parameters.ToCollection ();

After change

System.Collections.ICollection params = parameters.ToCollection ();